┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/usr/share/pie/vendor/illuminate/contracts/Encryption
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: Encrypter.php
<?php namespace Illuminate\Contracts\Encryption; interface Encrypter { /** * Encrypt the given value. * * @param mixed $value * @param bool $serialize * @return string * * @throws \Illuminate\Contracts\Encryption\EncryptException */ public function encrypt($value, $serialize = true); /** * Decrypt the given value. * * @param string $payload * @param bool $unserialize * @return mixed * * @throws \Illuminate\Contracts\Encryption\DecryptException */ public function decrypt($payload, $unserialize = true); /** * Get the encryption key that the encrypter is currently using. * * @return string */ public function getKey(); }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 DecryptException.php
PHP
133 B
2025-03-24 11:47
EDIT
📄 Encrypter.php
PHP
761 B
2025-03-24 11:47
EDIT
📄 EncryptException.php
PHP
133 B
2025-03-24 11:47
EDIT
📄 StringEncrypter.php
PHP
570 B
2025-03-24 11:47
EDIT